WPF Confirmation MessageBox

76

WPF Confirmation MessageBox -

MessageBoxResult messageBoxResult = System.Windows.MessageBox.Show("Are you sure?", "Delete Confirmation", System.Windows.MessageBoxButton.YesNo);
        if (messageBoxResult == MessageBoxResult.Yes)
 //...........

Comments

Submit
0 Comments